home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Windows 95 Shareware
/
The Best of Windows 95 Shareware (Wayzata Technology)(1996).ISO
/
pc
/
txtutils
/
winedt95
/
erase.bat
< prev
next >
Wrap
DOS Batch File
|
1995-08-02
|
433b
|
22 lines
@ECHO OFF
rem The user can easily modify this file
if "%1"=="" goto ERASE
cd %1
if "%2"=="" goto NOFILE
echo Current WINEDT working file set to %1\%2%3
goto ERASE
:NOFILE
echo Current WINEDT working directory set to %1
:ERASE
echo Deleting working files: BAK,TMP
if not exist *.BAK goto noBAK
del *.BAK
echo BAK files deleted.
:noBAK
if not exist *.TMP goto noTMP
del *.TMP
echo TMP files deleted.
:noTMP
pause